home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / smb2www_installed.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  67 lines

  1. if(description)
  2. {
  3.  script_id(11377);
  4.  script_version("$Revision: 1.2 $");
  5.  
  6.  
  7.  
  8.  name["english"] = "smb2www installed";
  9.  script_name(english:name["english"]);
  10.  
  11.  desc["english"] = "
  12. The remote host is running smb2www - a SMB to WWW gateway.
  13.  
  14. An attacker may use this CGI to use this host as a proxy - 
  15. he can connect to third parties SMB host without revealing
  16. his IP address.
  17.  
  18. Solution : Enforce proper access controls to this CGI
  19. Risk factor : Medium";
  20.  
  21.  
  22.  script_description(english:desc["english"]);
  23.  
  24.  summary["english"] = "smb2www Command Execution";
  25.  
  26.  script_summary(english:summary["english"]);
  27.  
  28.  script_category(ACT_GATHER_INFO);
  29.  
  30.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  31.  family["english"] = "CGI abuses";
  32.  script_family(english:family["english"]);
  33.  script_dependencie("find_service.nes", "no404.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. # Check starts here
  39.  
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. port = get_http_port(default:80);
  44.  
  45. if(!get_port_state(port))exit(0);
  46.  
  47.  
  48. dirs = make_list("/samba");
  49.  
  50. foreach d (cgi_dirs())
  51.  dirs = make_list(dirs, d, string(d, "/samba"));
  52. }
  53.  
  54. foreach d (dirs)
  55. {
  56.  req = http_get(item:string(d, "/smb2www.pl"), port:port);
  57.  res = http_keepalive_send_recv(port:port, data:req);
  58.  if ( res == NULL ) exit(0);
  59.  
  60.  if("Welcome to the SMB to WWW gateway" >< res){
  61.      security_warning(port);
  62.     exit(0);
  63.     }
  64. }
  65.  
  66.